home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / kyocera / preload.h < prev    next >
C/C++ Source or Header  |  1990-10-01  |  583b  |  22 lines

  1. #include "param.h"
  2.  
  3. #ifndef PRLOAD
  4. #define PRLOAD "/usr/spool/tex/dvi_preload"
  5. #endif
  6.  
  7. /* Information about preloaded fonts
  8.  * The preload file contains a number of this records
  9.  * One for each font that has been loaded
  10.  * The preload file is read when the driver starts
  11.  * and the information about fonts loaded is dumped on
  12.  vi printing on Kyocera laser pri
  13.  */
  14. struct preload_info {
  15.   short          pr_kyonumber;
  16.   char           pr_name[MAXFNTNAMLEN];
  17.   long           pr_mag;
  18.   long           pr_words_used;
  19.   long           pr_tfm_checksum;
  20.   unsigned long  pr_charvec[4];
  21. };
  22.